(Variable Definitions, Customization Types):
authorRichard M. Stallman <rms@gnu.org>
Wed, 3 Jan 2007 22:17:28 +0000 (22:17 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 3 Jan 2007 22:17:28 +0000 (22:17 +0000)
Don't use * in doc string for defcustom.

lispref/customize.texi

index ee188c76c7924f7270acb7716108147cd26e34db..621124acb97898a9cc7b6384af4c815ce3fd497b 100644 (file)
@@ -409,7 +409,7 @@ Keywords}.  Here is an example, from the library @file{saveplace.el}:
 
 @example
 (defcustom save-place nil
-  "*Non-nil means automatically save place in each file..."
+  "Non-nil means automatically save place in each file..."
   :type 'boolean
   :require 'saveplace
   :group 'save-place)
@@ -461,7 +461,7 @@ example:
 
 @example
 (defcustom diff-command "diff"
-  "*The command to use to run diff."
+  "The command to use to run diff."
   :type '(string)
   :group 'diff)
 @end example